home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ubiquity / console-setup-apply next >
Text File  |  2009-07-15  |  339b  |  18 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. if [ -n "$UBIQUITY_OEM_USER_CONFIG" ]; then
  5.     setupcon --save-only
  6.     update-initramfs -u >&2
  7. else
  8.     . /usr/share/debconf/confmodule
  9.  
  10.     mkdir -p /target/etc/default
  11.     cp -a /etc/default/console-setup /target/etc/default/
  12.     chroot /target setupcon --save-only
  13.  
  14.     apt-install console-setup || true
  15. fi
  16.  
  17. exit 0
  18.